home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / p4 / p4-1_2b.lha / p4-1.2b / util / makefile.proto < prev   
Makefile  |  1992-10-19  |  423b  |  22 lines

  1. # prototype makefile for util directory of P4
  2.  
  3. RM = rm
  4.  
  5. defs.MD: install.awk defs.all
  6.     @if grep $(MACHINE) machines > /dev/null ;\
  7.     then \
  8.     echo making machine-dependent definitions for $(MACHINE) ;\
  9.     awk -f install.awk machine=$(MACHINE) defs.all > defs.MD ;\
  10.     else \
  11.     echo cannot install for $(MACHINE), valid machines are: ;\
  12.     cat machines ;\
  13.     exit 1 ;\
  14.     fi
  15.  
  16. default:
  17.  
  18. all:
  19.  
  20. realclean:
  21.     $(RM) -f Makefile defs.MD *~ *.o
  22.